String.Index to type "Int"
文字列の検索、目的の文字列が出現する最初の場所の検索を行う。
code:swift
let s=readLine()!.map({String($0)}).firstIndex(of:"1")!
//S = 0001
if let i = S.firstIndex(of: "1") {
let index: Int = S.distance(from: S.startIndex, to: i)
print(index) // Prints 3
}